/* ================= ROOT COLORS ================= */

:root {
    --blue: #1f5ea9;
    --red: #ef2026;
    --deep-blue: #03386b;
    --white: #ffffff;
}


/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* ================= CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}


/* ================= TOP BAR ================= */

.top-bar {
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right span {
    white-space: nowrap;
}

.top-bar i {
    margin-right: 6px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
}




/* ================= NAVBAR ================= */

.navbar {
    background: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 100;
    transition: 0.3s ease;
}

.navbar.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    animation: navbarDown 0.35s ease;
}

@keyframes navbarDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 90px;
}


/* ================= NAVIGATION ================= */

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #111;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
}


/* ================= ORDER BUTTON ================= */

.order-btn {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
}

.cart-icon {
    background: var(--red);
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.order-btn span:last-child {
    background: var(--blue);
    color: #fff;
    padding: 18px 30px;
    font-weight: 600;
}


/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--deep-blue);
}

/* =====================================
   HERO SECTION
===================================== */

.service-hero {
    width: 100%;
    min-height: 545px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            115deg,
            #06133f 0%,
            #071c5d 48%,
            #e8172c 48%,
            #f21f30 100%
        );
}


/* DECORATIVE OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 38% 55%,
            rgba(32, 71, 170, 0.45),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            transparent 65%,
            rgba(255, 255, 255, 0.05) 65%
        );
}


.hero-container {
    min-height: 545px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* =====================================
   HERO CONTENT
===================================== */

.hero-content {
    width: 47%;
    color: #ffffff;
    padding-left: 25px;
    position: relative;
    z-index: 5;
}


.hero-script {
    display: block;
    color: #ff293e;
    font-family: cursive;
    font-size: 31px;
    font-style: italic;
    margin-bottom: 5px;
}


.hero-content h1 {
    font-size: 58px;
    line-height: 1.03;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 1px;
}


.hero-content h1 strong {
    display: block;
    color: #ef2338;
    font-size: 65px;
    font-weight: 800;
}


.hero-content p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}


/* =====================================
   HERO BUTTONS
===================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}


.hero-btn {
    min-height: 50px;
    padding: 0 28px;
    border-radius: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 12px;
    font-weight: 700;

    transition: 0.35s ease;
}


.red-btn {
    color: #ffffff;
    background: #ed1c2e;
    box-shadow: 0 7px 22px rgba(237, 28, 46, 0.4);
}


.red-btn:hover {
    background: #ffffff;
    color: #ed1c2e;
    transform: translateY(-3px);
}


.outline-btn {
    color: #ffffff;
    border: 2px solid #ffffff;
}


.outline-btn:hover {
    background: #ffffff;
    color: #071b50;
    transform: translateY(-3px);
}


/* =====================================
   HERO FEATURES
===================================== */

.hero-features {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 35px;
}


.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}


.feature-icon {
    width: 43px;
    height: 43px;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
}


.hero-feature span {
    font-size: 10px;
    line-height: 1.5;
    font-weight: 600;
}


/* =====================================
   HERO IMAGE
===================================== */

.hero-image {
    width: 58%;
    height: 100%;
    position: absolute;
    right: -20px;
    bottom: 0;

    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}


.hero-image img {
    width: 100%;
    max-width: 760px;
    object-fit: contain;
    position: relative;
    z-index: 2;

    filter: drop-shadow(
        0 20px 25px rgba(0, 0, 0, 0.35)
    );
}


/* =====================================
   PRINTING BADGE
===================================== */

.best-printing-badge {
    width: 130px;
    height: 130px;

    position: absolute;
    right: 30px;
    bottom: 55px;
    z-index: 4;

    border-radius: 50%;

    background: #061b51;
    border: 5px solid #ed1c2e;

    color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 800;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.best-printing-badge span {
    font-size: 25px;
    line-height: 1;
}


.best-printing-badge small {
    font-size: 11px;
    margin-top: 3px;
}


/* =====================================
   HERO ANIMATION
===================================== */

.hero-content {
    animation: heroContent 0.8s ease forwards;
}


.hero-image img {
    animation: heroMachine 1s ease forwards;
}


@keyframes heroContent {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes heroMachine {

    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =====================================
   HERO RESPONSIVE
===================================== */

@media (max-width: 1000px) {

    .service-hero {
        min-height: 650px;
    }

    .hero-container {
        min-height: 650px;
    }

    .hero-content {
        width: 55%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h1 strong {
        font-size: 55px;
    }

    .hero-image {
        width: 58%;
        right: -120px;
    }

}


@media (max-width: 768px) {

    .service-hero {
        min-height: auto;
        padding: 65px 0 0;
    }

    .hero-container {
        min-height: auto;
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h1 strong {
        font-size: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        width: 100%;
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 40px;
    }

    .hero-image img {
        width: 100%;
    }

    .best-printing-badge {
        width: 100px;
        height: 100px;
        right: 15px;
        bottom: 30px;
    }

    .best-printing-badge span {
        font-size: 19px;
    }

}


@media (max-width: 500px) {

    .hero-script {
        font-size: 25px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content h1 strong {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 220px;
    }

    .hero-features {
        gap: 20px;
    }

}


/* =====================================
   SERVICES SECTION
===================================== */

.services-section {
    padding: 55px 0 70px;
    background: #f8faff;
}


/* SECTION HEADING */

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading span {
    display: block;
    color: #ed1c2e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-heading h2 {
    color: #081431;
    font-size: 34px;
    font-weight: 800;
}


/* =====================================
   SERVICES GRID
===================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}


/* SERVICE CARD */

.service-card {
    min-width: 0;
    background: #ffffff;
    border-radius: 13px;
    padding: 18px 10px 15px;

    text-align: center;

    border: 1px solid #e7ebf4;

    box-shadow:
        0 8px 25px rgba(8, 25, 65, 0.08);

    transition: 0.4s ease;
    overflow: hidden;
}


.service-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 40px rgba(8, 25, 65, 0.15);
}


/* SERVICE ICON */

.service-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 15px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 19px;

    transition: 0.4s ease;
}


.blue-icon {
    background: #07378d;
}


.red-icon {
    background: #ed1c2e;
}


.service-card:hover .service-icon {
    transform: rotateY(360deg);
}


/* SERVICE TITLE */

.service-card h3 {
    min-height: 38px;
    color: #081431;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 9px;
}


/* SERVICE TEXT */

.service-card p {
    min-height: 62px;
    color: #4f586e;
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 12px;
}


/* SERVICE IMAGE */

.service-image {
    width: 100%;
    height: 145px;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 14px;
}


.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}


.service-card:hover .service-image img {
    transform: scale(1.1);
}


/* LEARN MORE */

.service-card > a {
    color: #07378d;
    font-size: 10px;
    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: 0.3s;
}


.service-card > a i {
    transition: 0.3s;
}


.service-card > a:hover {
    color: #ed1c2e;
}


.service-card > a:hover i {
    transform: translateX(5px);
}


/* =====================================
   SERVICES RESPONSIVE
===================================== */

@media (max-width: 1250px) {

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 25px 18px 20px;
    }

    .service-card h3 {
        font-size: 17px;
    }

    .service-card p {
        font-size: 12px;
    }

    .service-image {
        height: 190px;
    }

}


@media (max-width: 768px) {

    .services-section {
        padding: 50px 0;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}


@media (max-width: 520px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        max-width: 370px;
        width: 100%;
        margin: auto;
    }

    .service-image {
        height: 210px;
    }

}


.service-card {
    opacity: 0;
    transform: translateY(35px);
}

.service-card.show-service {
    opacity: 1;
    transform: translateY(0);
}

.service-card.show-service:hover {
    transform: translateY(-10px);
}


/* =====================================
   WHY CHOOSE US
===================================== */

.why-choose-section {
    width: 100%;
    padding: 35px 0 45px;
    background: #ffffff;
    overflow: hidden;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.75fr;
    align-items: center;
    gap: 45px;
}


/* =====================================
   LEFT IMAGE
===================================== */

.why-image-box {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.why-image {
    width: 88%;
    height: 290px;
    margin-left: auto;
    border-radius: 0 130px 130px 0;
    overflow: hidden;
    position: relative;
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 4px solid #ed1c2e;
    pointer-events: none;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* EXPERIENCE BOX */

.experience-box {
    width: 190px;
    height: 175px;

    position: absolute;
    left: -40px;
    top: 45px;
    z-index: 5;

    background: linear-gradient(
        135deg,
        #f12738,
        #e8162c
    );

    color: #ffffff;

    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 40px;

    box-shadow:
        0 15px 35px rgba(237, 28, 46, 0.3);
}

.experience-box strong {
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
}

.experience-box span {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 10px;
}


/* =====================================
   WHY CONTENT
===================================== */

.why-content {
    padding: 10px 0;
}

.why-small-title {
    color: #ed1c2e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.why-content h2 {
    color: #081431;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    margin: 6px 0 17px;
}


/* WHY LIST */

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #171d2e;
    font-size: 12px;
    font-weight: 500;

    margin-bottom: 10px;
}

.why-list li i {
    color: #07378d;
    font-size: 15px;
}


/* =====================================
   PROMISE CARD
===================================== */

.promise-card {
    min-height: 190px;

    background: #ffffff;

    border: 1px solid #e9edf5;
    border-radius: 18px;

    padding: 30px 25px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    box-shadow:
        0 10px 35px rgba(9, 30, 75, 0.1);

    transition: 0.4s ease;
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 45px rgba(9, 30, 75, 0.15);
}

.promise-icon {
    min-width: 65px;
    height: 65px;

    border: 2px solid #07378d;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #07378d;
    font-size: 32px;
}

.promise-content h3 {
    color: #081431;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.promise-content p {
    color: #4e5668;
    font-size: 11px;
    line-height: 1.6;
}

.signature {
    display: block;

    color: #07378d;

    font-family: cursive;
    font-size: 18px;
    font-style: italic;

    margin-top: 15px;

    transform: rotate(-5deg);
}


/* =====================================
   WHY SECTION RESPONSIVE
===================================== */

@media (max-width: 1100px) {

    .why-choose-container {
        grid-template-columns: 1.2fr 1fr;
    }

    .promise-card {
        grid-column: 1 / -1;
        width: 450px;
        max-width: 100%;
        margin: auto;
    }

}


@media (max-width: 768px) {

    .why-choose-section {
        padding: 55px 0;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-image-box {
        min-height: 330px;
    }

    .why-image {
        width: 90%;
        height: 320px;
    }

    .why-content {
        text-align: center;
    }

    .why-content h2 {
        font-size: 29px;
    }

    .why-list {
        max-width: 300px;
        margin: auto;
        text-align: left;
    }

}


@media (max-width: 500px) {

    .why-image-box {
        min-height: 270px;
    }

    .why-image {
        width: 95%;
        height: 250px;
        border-radius: 0 80px 80px 0;
    }

    .experience-box {
        width: 135px;
        height: 135px;
        left: -15px;
        top: 55px;
        padding-left: 25px;
    }

    .experience-box strong {
        font-size: 37px;
    }

    .experience-box span {
        font-size: 13px;
    }

    .promise-card {
        padding: 25px 20px;
    }

    .promise-icon {
        min-width: 55px;
        height: 55px;
        font-size: 25px;
    }

}


/* =====================================
   FEATURES BAR
===================================== */

.features-bar-section {
    width: 100%;
    padding: 15px 0 35px;
    background: #ffffff;
}

.features-bar {
    width: 100%;
    min-height: 105px;

    background:
        linear-gradient(
            120deg,
            #071b4f,
            #051435
        );

    border-radius: 17px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    padding: 20px 35px;

    box-shadow:
        0 12px 30px rgba(6, 25, 67, 0.18);

    overflow: hidden;
}


/* FEATURE ITEM */

.feature-bar-item {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    color: #ffffff;

    transition: 0.35s ease;
}

.feature-bar-item:hover {
    transform: translateY(-5px);
}


/* ICON */

.bar-icon {
    width: 48px;
    height: 48px;

    border: 2px solid #ed1c2e;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ed1c2e;

    font-size: 21px;

    transition: 0.35s ease;
}

.red-bar-icon {
    border-color: #ed1c2e;
    color: #ed1c2e;
}

.feature-bar-item:hover .bar-icon {
    background: #ed1c2e;
    color: #ffffff;

    transform: rotateY(360deg);
}


/* TITLE */

.feature-bar-item h4 {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}


/* DIVIDER */

.feature-divider {
    width: 1px;
    height: 50px;

    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.5) 0,
            rgba(255, 255, 255, 0.5) 3px,
            transparent 3px,
            transparent 7px
        );
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 950px) {

    .features-bar {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }

    .feature-bar-item {
        flex: 0 0 30%;
    }

    .feature-divider {
        display: none;
    }

}


@media (max-width: 650px) {

    .features-bar {
        flex-direction: column;
        align-items: stretch;

        padding: 30px 25px;
        gap: 0;
    }

    .feature-bar-item {
        width: 100%;
        flex: auto;

        justify-content: flex-start;

        padding: 18px 10px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }

    .feature-bar-item:last-child {
        border-bottom: none;
    }

    .feature-bar-item h4 {
        font-size: 14px;
    }

}


.feature-bar-item {
    opacity: 0;
    transform: translateY(30px);
}

.feature-bar-item.bar-item-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================
   RECENT WORK SECTION
===================================== */

.recent-work-section {
    padding: 55px 0 65px;
    background: #f7f9fd;
}

.work-heading {
    margin-bottom: 25px;
}


/* =====================================
   FILTER BUTTONS
===================================== */

.work-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 30px;
}

.filter-btn {
    border: 1px solid #dce1eb;
    background: #ffffff;

    color: #17213a;

    padding: 10px 22px;

    border-radius: 25px;

    font-family: inherit;
    font-size: 10px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ed1c2e;
    border-color: #ed1c2e;
    color: #ffffff;
}


/* =====================================
   WORK GRID
===================================== */

.work-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 185px;

    gap: 15px;
}


/* WORK ITEM */

.work-item {
    position: relative;

    border-radius: 12px;

    overflow: hidden;

    cursor: pointer;

    opacity: 1;

    transform: scale(1);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.work-large {
    grid-row: span 2;
}


.work-wide {
    grid-column: span 2;
}


.work-item.hide-work {
    display: none;
}


.work-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.6s ease;
}


.work-item:hover img {
    transform: scale(1.12);
}


/* =====================================
   WORK OVERLAY
===================================== */

.work-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;

    color: #ffffff;

    background:
        linear-gradient(
            to top,
            rgba(4, 17, 53, 0.92),
            rgba(4, 17, 53, 0.15),
            transparent
        );

    opacity: 0;

    transition: 0.4s ease;
}


.work-item:hover .work-overlay {
    opacity: 1;
}


.work-overlay span {
    color: #ff3347;

    font-size: 10px;
    font-weight: 700;

    margin-bottom: 4px;
}


.work-overlay h3 {
    font-size: 15px;
    font-weight: 700;
}


/* PLUS BUTTON */

.work-view-btn {
    width: 38px;
    height: 38px;

    position: absolute;
    right: 18px;
    top: 18px;

    border: none;
    border-radius: 50%;

    background: #ed1c2e;
    color: #ffffff;

    font-size: 15px;

    cursor: pointer;

    transform: scale(0);

    transition: 0.35s ease;
}


.work-item:hover .work-view-btn {
    transform: scale(1);
}


/* =====================================
   VIEW PROJECT BUTTON
===================================== */

.view-project-box {
    text-align: center;
    margin-top: 30px;
}


.view-project-btn {
    min-height: 47px;

    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #ed1c2e;
    color: #ffffff;

    border-radius: 25px;

    font-size: 11px;
    font-weight: 700;

    transition: 0.35s ease;
}


.view-project-btn:hover {
    background: #071b50;

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(7, 27, 80, 0.25);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 950px) {

    .work-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 220px;
    }

}


@media (max-width: 550px) {

    .recent-work-section {
        padding: 50px 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .work-large,
    .work-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .filter-btn {
        padding: 9px 15px;
    }

}


/* =====================================
   WORK PROCESS SECTION
===================================== */

.process-section {
    width: 100%;
    padding: 60px 0 75px;
    background: #ffffff;
    overflow: hidden;
}

.process-heading {
    margin-bottom: 55px;
}


/* =====================================
   PROCESS WRAPPER
===================================== */

.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* PROCESS ITEM */

.process-item {
    width: 170px;
    position: relative;
    text-align: center;

    transition: 0.4s ease;
}

.process-item:hover {
    transform: translateY(-8px);
}


/* STEP NUMBER */

.step-number {
    position: absolute;
    top: -34px;
    left: 50%;

    transform: translateX(-50%);

    color: #edf0f6;

    font-size: 56px;
    line-height: 1;

    font-weight: 800;

    z-index: 0;
}


/* PROCESS ICON */

.process-icon {
    width: 82px;
    height: 82px;

    margin: auto;

    position: relative;
    z-index: 2;

    border-radius: 50%;

    background: #07378d;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 29px;

    border: 7px solid #eef3fc;

    box-shadow:
        0 8px 20px rgba(7, 55, 141, 0.2);

    transition: 0.5s ease;
}


.red-process-icon {
    background: #ed1c2e;

    box-shadow:
        0 8px 20px rgba(237, 28, 46, 0.2);
}


.process-item:hover .process-icon {
    transform: rotateY(360deg);
}


/* PROCESS CONTENT */

.process-item h3 {
    color: #081431;

    font-size: 14px;
    font-weight: 800;

    margin: 17px 0 8px;
}


.process-item p {
    color: #697084;

    font-size: 10px;
    line-height: 1.6;
}


/* =====================================
   PROCESS CONNECTOR
===================================== */

.process-line {
    flex: 1;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 8px 50px;
}


.process-line::before {
    content: "";

    width: 100%;
    height: 1px;

    border-top:
        2px dashed #cbd3e2;
}


.process-line i {
    position: absolute;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #ffffff;

    color: #ed1c2e;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;

    border: 1px solid #dce2ed;
}


/* CENTER PROCESS */

.center-process .process-icon {
    width: 95px;
    height: 95px;

    font-size: 35px;

    border-width: 8px;

    background:
        linear-gradient(
            135deg,
            #07378d,
            #061b50
        );
}


.center-process {
    transform: translateY(-10px);
}


.center-process:hover {
    transform: translateY(-18px);
}


/* =====================================
   PROCESS RESPONSIVE
===================================== */

@media (max-width: 1000px) {

    .process-wrapper {
        flex-wrap: wrap;
        justify-content: center;

        gap: 50px 25px;
    }

    .process-item {
        width: 27%;
        min-width: 200px;
    }

    .process-line {
        display: none;
    }

}


@media (max-width: 650px) {

    .process-section {
        padding: 50px 0;
    }

    .process-heading {
        margin-bottom: 45px;
    }

    .process-wrapper {
        flex-direction: column;

        gap: 55px;
    }

    .process-item {
        width: 100%;
        max-width: 300px;
    }

    .center-process {
        transform: none;
    }

    .center-process:hover {
        transform: translateY(-8px);
    }


    /* MOBILE CONNECTING LINE */

    .process-item:not(:last-child)::after {
        content: "";

        position: absolute;

        width: 2px;
        height: 40px;

        left: 50%;
        bottom: -48px;

        transform: translateX(-50%);

        border-left:
            2px dashed #ccd4e2;
    }

}



.process-item {
    opacity: 0;
    transform: translateY(45px);
}

.process-item.process-visible {
    opacity: 1;
    transform: translateY(0);
}

.center-process.process-visible {
    transform: translateY(-10px);
}

.process-item.process-visible:hover {
    transform: translateY(-8px);
}

.center-process.process-visible:hover {
    transform: translateY(-18px);
}


/* =====================================
   TESTIMONIAL SECTION
===================================== */

.testimonial-section {
    width: 100%;
    padding: 60px 0 65px;
    background: #f6f8fd;
    overflow: hidden;
}

.testimonial-heading {
    margin-bottom: 35px;
}


/* SLIDER */

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 25px;
}

.testimonial-track {
    display: flex;
    gap: 25px;

    transition: transform 0.6s ease;
}


/* =====================================
   TESTIMONIAL CARD
===================================== */

.testimonial-card {
    min-width: calc((100% - 50px) / 3);

    position: relative;

    background: #ffffff;

    border-radius: 15px;

    padding: 30px 28px 25px;

    border: 1px solid #e7ebf3;

    box-shadow:
        0 10px 30px rgba(7, 27, 80, 0.08);

    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(7, 27, 80, 0.14);
}


/* QUOTE ICON */

.quote-icon {
    position: absolute;

    right: 25px;
    top: 22px;

    color: #edf0f7;

    font-size: 45px;
}


/* STARS */

.client-stars {
    display: flex;
    gap: 4px;

    color: #ffc107;

    font-size: 12px;

    margin-bottom: 18px;
}


/* REVIEW TEXT */

.testimonial-card > p {
    min-height: 75px;

    position: relative;
    z-index: 2;

    color: #555e72;

    font-size: 12px;
    line-height: 1.8;

    font-style: italic;
}


/* =====================================
   CLIENT INFO
===================================== */

.client-info {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #edf0f5;
}

.client-info img {
    width: 50px;
    height: 50px;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #edf1f8;
}

.client-info h4 {
    color: #081431;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 4px;
}

.client-info span {
    color: #ed1c2e;

    font-size: 9px;
    font-weight: 600;
}


/* =====================================
   SLIDER DOTS
===================================== */

.testimonial-dots {
    display: flex;
    justify-content: center;

    gap: 8px;

    margin-top: 5px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 20px;

    background: #bdc5d5;

    cursor: pointer;

    transition: 0.35s ease;
}

.testimonial-dot.active {
    width: 28px;

    background: #ed1c2e;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 900px) {

    .testimonial-card {
        min-width: calc((100% - 25px) / 2);
    }

}


@media (max-width: 600px) {

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-track {
        gap: 0;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

}


/* =====================================
   SERVICES CTA SECTION
===================================== */

.services-cta {
    width: 100%;
    min-height: 230px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #ed1c2e 0%,
            #ed1c2e 50%,
            #071b50 50%,
            #06153e 100%
        );
}


/* DECORATIVE SHAPES */

.cta-shape {
    position: absolute;
    border-radius: 50%;
    border: 35px solid rgba(255, 255, 255, 0.05);
}

.cta-shape-one {
    width: 280px;
    height: 280px;

    left: -100px;
    top: -150px;
}

.cta-shape-two {
    width: 320px;
    height: 320px;

    right: -130px;
    bottom: -220px;
}


/* =====================================
   CTA CONTAINER
===================================== */

.cta-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


/* CTA CONTENT */

.cta-content {
    width: 55%;
    color: #ffffff;
}

.cta-content > span {
    display: block;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.8);
}

.cta-content h2 {
    font-size: 34px;
    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 12px;
}

.cta-content p {
    max-width: 500px;

    font-size: 12px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.85);
}


/* =====================================
   CTA BUTTONS
===================================== */

.cta-actions {
    width: 45%;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 15px;
}

.cta-btn {
    min-height: 48px;

    padding: 0 25px;

    border-radius: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 11px;
    font-weight: 700;

    transition: 0.35s ease;
}


/* WHITE BUTTON */

.cta-white-btn {
    background: #ffffff;
    color: #ed1c2e;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-white-btn:hover {
    background: #ed1c2e;
    color: #ffffff;

    transform: translateY(-4px);
}


/* OUTLINE BUTTON */

.cta-outline-btn {
    border: 2px solid #ffffff;

    color: #ffffff;
}

.cta-outline-btn:hover {
    background: #ffffff;
    color: #071b50;

    transform: translateY(-4px);
}


/* =====================================
   CTA RESPONSIVE
===================================== */

@media (max-width: 900px) {

    .services-cta {
        padding: 55px 0;

        background:
            linear-gradient(
                135deg,
                #ed1c2e,
                #071b50
            );
    }

    .cta-container {
        flex-direction: column;

        text-align: center;
    }

    .cta-content,
    .cta-actions {
        width: 100%;
    }

    .cta-content p {
        margin: auto;
    }

    .cta-actions {
        justify-content: center;
    }

}


@media (max-width: 550px) {

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-btn {
        width: 230px;
    }

}


.cta-content {
    opacity: 0;
    transform: translateX(-60px);

    transition: 0.8s ease;
}

.cta-actions {
    opacity: 0;
    transform: translateX(60px);

    transition: 0.8s ease;
}

.services-cta.cta-visible .cta-content,
.services-cta.cta-visible .cta-actions {
    opacity: 1;
    transform: translateX(0);
}




/* ================= FOOTER ================= */

.footer {
    background:
        linear-gradient(
            110deg,
            #06467f,
            #033664
        );

    color: #fff;

    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr repeat(4, 1fr);

    gap: 35px;
}

.footer-logo img {
    width: 120px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;

    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 30px;
    height: 30px;

    background: #fff;
    color: var(--blue);

    border-radius: 50%;

    display: grid;
    place-items: center;

    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
}

.footer-column {
    padding-left: 30px;

    border-left:
        1px solid rgba(255, 255, 255, 0.25);
}

.footer-column h3 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 14px;

    margin-bottom: 20px;

    position: relative;
}

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 30px;
    height: 2px;

    background: var(--red);
}

.footer-column a {
    display: block;

    color: #fff;

    font-size: 13px;

    margin-bottom: 11px;

    transition: 0.3s;
}

.footer-column a:hover,
.footer-column .footer-active {
    color: var(--red);
}

.contact-column p {
    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.contact-column i {
    margin-right: 8px;
}


/* ================= COPYRIGHT ================= */

.copyright {
    border-top:
        1px solid rgba(255, 255, 255, 0.25);

    margin-top: 35px;

    padding-top: 20px;

    text-align: center;

    font-size: 12px;

    color: #ccd9e7;
}

.copyright span {
    color: var(--red);

    margin-left: 15px;
}


/* ================= RESPONSIVE 1100 ================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}

/* =====================================
   FINAL ANIMATION CONFLICT FIX
===================================== */

/* SERVICES */

.service-card {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.35s ease;
}

.service-card.show-service {
    opacity: 1;
    transform: translateY(0);
}

.service-card.show-service:hover {
    transform: translateY(-10px);
}


/* WHY CHOOSE */

.why-image-box,
.why-content,
.promise-card {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.why-image-box {
    transform: translateX(-50px);
}

.why-content {
    transform: translateY(40px);
}

.promise-card {
    transform: translateX(50px);
}

.why-visible .why-image-box,
.why-visible .why-content,
.why-visible .promise-card {
    opacity: 1;
    transform: translate(0, 0);
}

.why-visible .promise-card:hover {
    transform: translateY(-8px);
}


/* FEATURE BAR */

.feature-bar-item {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.feature-bar-item.bar-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-bar-item.bar-item-visible:hover {
    transform: translateY(-5px);
}


/* PROCESS */

.process-item {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.process-item.process-visible {
    opacity: 1;
    transform: translateY(0);
}

.center-process.process-visible {
    transform: translateY(-10px);
}

.process-item.process-visible:hover {
    transform: translateY(-8px);
}

.center-process.process-visible:hover {
    transform: translateY(-18px);
}


/* CTA */

.cta-content,
.cta-actions {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.cta-content {
    transform: translateX(-50px);
}

.cta-actions {
    transform: translateX(50px);
}

.services-cta.cta-visible .cta-content,
.services-cta.cta-visible .cta-actions {
    opacity: 1;
    transform: translateX(0);
}


/* =====================================
   BACK TO TOP
===================================== */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: #ed1c2e;
    color: #ffffff;

    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: 0.35s ease;

    box-shadow:
        0 8px 25px rgba(237, 28, 46, 0.35);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #071b50;
    transform: translateY(-5px);
}

